home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / etc / RCS / utime.c,v < prev    next >
Text File  |  1990-01-23  |  2KB  |  95 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     90.01.23.14.49.44;  author douglis;  state Exp;
  11. branches ;
  12. next     ;
  13.  
  14.  
  15. desc
  16. @Compatiblity routine for obsolete function.
  17. @
  18.  
  19.  
  20.  
  21. 1.1
  22. log
  23. @Initial revision
  24. @
  25. text
  26. @/* 
  27.  * utime.c --
  28.  *
  29.  *    Compatiblity routine for obsolete function.
  30.  *
  31.  * Copyright 1989 Regents of the University of California
  32.  * Permission to use, copy, modify, and distribute this
  33.  * software and its documentation for any purpose and without
  34.  * fee is hereby granted, provided that the above copyright
  35.  * notice appear in all copies.  The University of California
  36.  * makes no representations about the suitability of this
  37.  * software for any purpose.  It is provided "as is" without
  38.  * express or implied warranty.
  39.  */
  40.  
  41. #ifndef lint
  42. static char rcsid[] = "$Header$";
  43. #endif /* not lint */
  44.  
  45. #include <sys/time.h>
  46.  
  47. /*
  48.  *----------------------------------------------------------------------
  49.  *
  50.  * utime --
  51.  *
  52.  *     utime() sets the access and modification times of  the  file
  53.  *     named by file.
  54.  *
  55.  *     If the timep argument is NULL, the access  and  modification
  56.  *     times  are  set  to the current time.  A process must be the
  57.  *     owner of the file or have write permission for the  file  to
  58.  *     use utime() in this manner.
  59.  *
  60.  *     If the timep argument is not NULL, it is assumed to point to
  61.  *     an  array  of  two time_t values.  The access time is set to
  62.  *     the value of the first member, and the modification time  is
  63.  *     set  to the value of the second member.  The times contained
  64.  *     in that array are measured in seconds since 00:00:00 GMT Jan
  65.  *     1,  1970.   Only the owner of the file or the super-user may
  66.  *     use utime() in this manner.
  67.  *
  68.  *     In either case, the ``inode-changed'' time of  the  file  is
  69.  *     set to the current time.
  70.  *
  71.  * Results:
  72.  *
  73.  *      Upon successful completion, a value of 0 is returned.  Otherwise,
  74.  *      a value of -1 is returned and errno is set to indicate the error.
  75.  *
  76.  * Side effects:
  77.  *    
  78.  *
  79.  *----------------------------------------------------------------------
  80.  */
  81. int
  82. utime(file, timep)
  83.         char *file;
  84.         int *timep;
  85. {
  86.         struct timeval tv[2];
  87.  
  88.         tv[0].tv_sec = timep[0];
  89.     tv[0].tv_usec = 0;
  90.         tv[1].tv_sec = timep[1];
  91.     tv[1].tv_usec = 0;
  92.         return utimes(file, tv);
  93. }
  94. @
  95.